'Declaration
<NotNullAttribute()> Public Overloads Shared Function Create(Of TValue)( _ ByVal endpointDescriptor As UAEndpointDescriptor, _ ByVal nodeDescriptor As UANodeDescriptor, _ ByVal samplingInterval As Integer, _ ByVal absoluteDeadbandValue As Double _ ) As UADataChangeNotificationObservable(Of TValue)
'Usage
Dim endpointDescriptor As UAEndpointDescriptor Dim nodeDescriptor As UANodeDescriptor Dim samplingInterval As Integer Dim absoluteDeadbandValue As Double Dim value As UADataChangeNotificationObservable(Of TValue) value = UADataChangeNotificationObservable.Create(Of TValue)(endpointDescriptor, nodeDescriptor, samplingInterval, absoluteDeadbandValue)
[NotNull()] public static UADataChangeNotificationObservable<TValue> Create<TValue>( UAEndpointDescriptor endpointDescriptor, UANodeDescriptor nodeDescriptor, int samplingInterval, double absoluteDeadbandValue )
[NotNull()] public: static UADataChangeNotificationObservable<TValue^>^ Creategeneric<typename TValue> ( UAEndpointDescriptor^ endpointDescriptor, UANodeDescriptor^ nodeDescriptor, int samplingInterval, double absoluteDeadbandValue )
Parameters
- endpointDescriptor
- Endpoint descriptor. Identifies the OPC-UA server.
- nodeDescriptor
- Node descriptor. Identifies the node in OPC UA server's address space.
- samplingInterval
- The sampling interval (in milliseconds) indicates the fastest rate at which the Server should sample its underlying source for data changes.
- absoluteDeadbandValue
- The value of absolute deadband.
Type Parameters
- TValue
Return Value
Returns an observable for changes in the given OPC UA monitored item.